home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.316 < prev    next >
Text File  |  1996-02-12  |  28KB  |  650 lines

  1. Frequently Asked Questions (FAQS);faqs.316
  2.  
  3.  
  4. ---
  5. _john
  6.  
  7.     John Grieggs grieggs@jpl-devvax.jpl.nasa.gov JohnG@portal.com
  8. ---
  9. Last update: 21Dec92
  10.  
  11. What's new?
  12.  
  13. Enhanced Levine book listing (iecc!johnl@ursa-major.spdcc.com).
  14.  
  15. Pixar's address, and Pixar video ordering info (jfr@tellabs.com).
  16.  
  17.         grieggs@jpl-devvax.jpl.nasa.gov
  18.  
  19.  
  20.  
  21. Contents:
  22.  
  23.     1) General references for graphics questions.
  24.     2) Drawing three-dimensional objects on a two-dimensional screen.
  25.     3) Quantizing 24 bit images down to 8 bits.
  26.     4) Converting color into grayscale.
  27.     5) Quantizing grayscale to black&white.
  28.     6) Rotating a raster image by an arbitrary angle.
  29.     7) Free image manipulation software.
  30.     8) Format documents for TIFF, IFF, BIFF, NFF, OFF, FITS, etc.
  31.     9) Converting between vector formats.
  32.     10) How to get Pixar films.
  33.     11) How do I draw a circle as a Bezier (or B-spline) curve?
  34.     12) How to order standards documents.
  35.     13) How to FTP by email.
  36.     14) How to tell whether a point is within a planar polygon.
  37.     15) How to tessellate a sphere.
  38.     16) Specific references on ray-tracing and global illumination.
  39.     17) SIGGRAPH information online
  40.     18) SIGGRAPH Panels Proceedings available
  41.     19) Graphics mailing lists
  42.     20) Specific references on file formats
  43.     21) What about GIF?
  44.     22) What is morphing?
  45.     23) How to ray-trace height fields
  46.     24) How to find the area of a 3D polygon
  47.     25) How to join ACM/SIGGRAPH
  48.     26) Where can I find MRI and CR scan volume data?
  49.     27) Specific references on spatial data structures
  50.  
  51.  
  52. 1) General references for graphics questions:
  53.  
  54.     Computer Graphics: Principles and Practice (2nd Ed.), J.D. Foley,
  55.     A. van Dam, S.K. Feiner, J.F. Hughes, Addison-Wesley 1990, ISBN
  56.     0-201-12110-7
  57.     Procedural Elements for Computer Graphics, David F. Rogers, McGraw
  58.     Hill 1985, ISBN 0-07-053534-5
  59.     Mathematical Elements for Computer Graphics 2nd Ed., David F. Rogers
  60.     and J. Alan Adams, McGraw Hill 1990, ISBN 0-07-053530-2
  61.     Three Dimensional Computer Graphics, Alan Watt, Addison-Wesley 1990, ISBN
  62.     0-201-15442-0
  63.     An Introduction to Ray Tracing, Andrew Glassner (ed.), Academic Press
  64.     1989, ISBN 0-12-286160-4
  65.     Graphics Gems, Andrew Glassner (ed.), Academic Press 1990, ISBN
  66.     0-12-286165-5
  67.     Graphics Gems II, James Arvo (ed.), Academic Press 1991, ISBN
  68.     0-12-64480-0
  69.     Graphics Gems III, David Kirk (ed.), Academic Press 1992, ISBN
  70.     0-12-409670-0 (with IBM disk) or 0-12-409671-9 (with Mac disk)
  71.     Digital Image Warping, George Wolberg, IEEE Computer Society Press
  72.     Monograph 1990, ISBN 0-8186-8944-7
  73.     Digital Image Processing (2nd Ed.), Rafael C. Gonzalez, Paul Wintz,
  74.     Addison-Wesley 1987, ISBN 0-201-11026-1
  75.     A Programmer's Geometry, Adrian Bowyer, John Woodwark, Butterworths 1983,
  76.     ISBN 0-408-01242-0 Pbk
  77.  
  78. An automatic mail handler at Brown University allows users of "Computer
  79. Graphics: Principles and Practice," by Foley, van Dam, Feiner, and
  80. Hughes, to obtain text errata and information on distribution of the
  81. software packages described in the book.  Also, users can send the
  82. authors feedback, to report text errors and software bugs, make
  83. suggestions, and submit exercises.  To receive information describing
  84. how you can use the mail handler, simply mail graphtext@cs.brown.edu
  85. and put the word "Help" in the Subject line.  Use the Subject line
  86. "Software-Distribution" to receive information specifically concerning
  87. the software packages SRGP and SPHIGS.
  88.  
  89. Errata for "An Introduction to Ray Tracing" is available on
  90. wuarchive.wustl.edu in graphics/graphics/books/IntroToRT.errata.
  91.  
  92. Errata for "Digital Image Warping" is in the same directory as
  93. "Digital-Image-Warping.errata".
  94.  
  95. All C code from the "Graphics Gems" series is available via anonymous ftp
  96. from princeton.edu.  Look in the directory pub/Graphics/GraphicsGems for
  97. the various volumes (Gems, GemsII, GemsIII), and get the README file first.
  98.  
  99. Errata to _Graphics Gems_ and _Graphics Gems II is available on
  100. wuarchive.wustl.edu in graphics/graphics/books.
  101.  
  102. A list of computer graphics, computational geometry and image processing
  103. journals is available from Juhana Kouhia, jk87377@cs.tut.fi.
  104.  
  105.  
  106. 2) Drawing three-dimensional objects on a two-dimensional screen.
  107.  
  108. The simple answer is, you divide by the depth.  For a more verbose
  109. explanation, see any of the above references, starting with:
  110.  
  111. The Foley & Van Dam & Feiner & Hughes "Computer Graphics" book is certainly
  112. a good start.  Chapter 6 is "Viewing in 3D", then read chapter 15,
  113. "Visible-Surface Determination".  For more information go to chapter 16 for
  114. shading, chapter 19 for clipping, and branch out from there.
  115.  
  116.  
  117. 3) Quantizing 24 bit images down to 8 bits.
  118.  
  119. Find a copy of "Color Image Quantization for Frame Buffer Display" by
  120. Paul Heckbert, SIGGRAPH '82 Proceedings, page 297.  There are other
  121. algorithms, but this one works well and is fairly simple.  Implementations
  122. are included in most raster toolkits (see item 7 below).
  123.  
  124. A variant method is described in "Graphics Gems", p. 287-293.  Note that
  125. the code from the "Graphics Gems" series is all available from an FTP site,
  126. as described above.
  127.  
  128. Check out John Bradley's "Diversity Algorithm", which is incorporated into
  129. the xv package and described in the back of the manual.
  130.  
  131. The ImageMagick package (see section 7 for where it is) contains another
  132. quantizing algorithm which is presented as "doing a better job than the
  133. other algorithms, but slower".
  134.  
  135. There's also an implementation of:
  136.  
  137. Wan, Wong, and Prusinkiewicz, _An Algorithm for Multidimensional Data
  138. Clustering_, Transactions on Mathematical Software, Vol. 14 #2 (June, 1988),
  139. pp. 153-162.
  140.  
  141. avialable as princeton.edu:pub/Graphics/colorquant.shar.  This code,
  142. in modified form, appears in the Utah Raster Toolkit as well.
  143.  
  144.  
  145. 4) Converting color into grayscale.
  146.  
  147. The NTSC formula is:
  148.  
  149.     luminosity = .299 red + .587 green + .114 blue
  150.  
  151.  
  152. 5) Quantizing grayscale to black&white.
  153.  
  154. The only reference you need for this stuff is:
  155.  
  156.     Digital Halftoning, Robert Ulichney, MIT Press 1987, ISBN 0-262-21009-6
  157.  
  158. But before you go off and start coding, check out the image manipulation
  159. software mentioned in item 7 below.  All of the packages mentioned can do
  160. some form of gray to b&w conversion.
  161.  
  162.  
  163. 6) Rotating a raster image by an arbitrary angle.
  164.  
  165. The obvious but wrong method is to loop over the pixels in the source
  166. image, transform each coordinate, and copy the pixel to the destination.
  167. This is wrong because it leaves holes in the destination.  Instead,
  168. loop over the pixels in the destination image, apply the *reverse*
  169. transformation to the coordinates, and copy that pixel from the source.
  170. This method is quite general, and can be used for any one-to-one
  171. 2-D mapping, not just rotation.  You can add anti-aliasing by doing
  172. sub-pixel sampling.
  173.  
  174. However, there is a much faster method, with antialising included,
  175. which involves doing three shear operations.  The method was originally
  176. created for the IM Raster Toolkit (see below); an implementation is
  177. also present in PBMPLUS.  Reference: "A Fast Algorithm for Raster
  178. Rotation", by Alan Paeth (awpaeth@watcgl.waterloo.edu) Graphics
  179. Interface '86 (Vancouver).  An article on the IM toolkit appears in
  180. the same journal.  An updated version of the rotation paper appears
  181. in "Graphics Gems" (see section [1]) under the original title.
  182.  
  183.  
  184. 7) Free image manipulation software.
  185.  
  186. There are a number of toolkits for converting from one image format to
  187. another, doing simple image manipulations such as size scaling, plus
  188. the above-mentioned 24 -> 8, color -> gray, gray -> b&w conversions.
  189. Here are pointers to some of them:
  190.  
  191.     xv by John Bradley.  X-based image display, manipulation, and format
  192.     conversion package.  XV displays many image formats and permits editing
  193.     of GIF files, among others. The program was updated 5/92; see the file
  194.     contrib/xv-2.21.tar.Z on export.lcs.mit.edu.
  195.  
  196.     PBMPLUS, by Jef Poskanzer.  Comprehensive format conversion and image
  197.     manipulation package.  The latest version is always available via
  198.     anonymous FTP as ftp.ee.lbl.gov:pbmplus*.tar.Z,
  199.     wuarchive.wustl.edu:graphics/graphics/packages/pbmplus/pbmplus*.tar.Z,
  200.     and export.lcs.mit.edu:contrib/pbmplus*.tar.Z.
  201.  
  202.     IM Raster Toolkit, by Alan Paeth (awpaeth@watcgl.uwaterloo.ca).
  203.     Provides a portable and efficient format and related toolkit.  The
  204.     format is versatile in supporting pixels of arbitrary channels,
  205.     components, and bit precisions while allowing compression and machine
  206.     byte-order independence.  The kit contains more than 50 tools with
  207.     extensive support of image manipulation, digital halftoning and format
  208.     conversion.  Previously distributed on tape c/o the University of
  209.     Waterloo, an FTP version will appear someday.
  210.  
  211.     Utah RLE Toolkit.  Conversion and manipulation package, similar to
  212.     PBMPLUS.  Available via FTP as cs.utah.edu:pub/urt-*,
  213.     princeton.edu:pub/Graphics/urt-*, and freebie.engin.umich.edu:pub/urt-*.
  214.  
  215.     Fuzzy Pixmap Manipulation, by Michael Mauldin <mlm@nl.cs.cmu.edu>.
  216.     Conversion and manipulation package, similar to PBMPLUS.  Version 1.0
  217.     available via FTP as nl.cs.cmu.edu:/usr/mlm/ftp/fbm.tar.Z,
  218.     ftp.uu.net:pub/fbm.tar.Z, and ucsd.edu:graphics/fbm.tar.Z.
  219.  
  220.     Img Software Set, by Paul Raveling <raveling@venera.isi.edu>.  Reads and
  221.     writes its own image format, displays on an X11 screen, and does some
  222.     image manipulations.  Version 1.3 is available via FTP as
  223.     export.lcs.mit.edu:contrib/img_1.3.tar.Z, and
  224.     venera.isi.edu:pub/img_1.3.tar.Z along with a large collection of color
  225.     images.
  226.  
  227.     Xim, X Image Manipulator, by Philip R. Thompson.  It does essential
  228.     interactive image manipulations and uses x11r4 and the OSF/Motif toolkit
  229.     for the interface.  It supports images in 1, 8, 24 and 32 bit formats.
  230.     Reads/writes and converts to/from GIF, xwd, xbm, tiff, rle, xim, and
  231.     other formats.  Writes level 2 postscript.  Other utilities and image
  232.     application library are included.  Not a paint package.  Available via
  233.     ftp from gis.mit.edu.
  234.  
  235.     xloadimage, by Jim Frost <madd@std.com>.  Reads in images in various
  236.     formats and displays them on an X11 screen.  Available via FTP as
  237.     export.lcs.mit.edu:contrib/xloadimage*, and in your nearest comp.sources.x
  238.     archive.
  239.  
  240.     xli, by Grame Gill, is an updated xloadimage with numerous improvements
  241.     in both speed and in the number of formats supported.  Available in the
  242.     same places as xloadimage (contrib tape, comp.sources.x archives).
  243.  
  244.     TIFF Software, by Sam Leffler <sam@okeeffe.berkeley.edu>.  Nice
  245.     portable library for reading and writing TIFF files, plus a few tools
  246.     for manipulating them and reading other formats.  Available via FTP as
  247.     ucbvax.berkeley.edu:pub/tiff/*.tar.Z or ftp.uu.net:graphics/tiff.tar.Z
  248.  
  249.     xtiff, an X11 tool for viewing a TIFF file.  It was written to handle
  250.     as many different kinds of TIFF files as possible while remaining
  251.     simple, portable and efficient.  xtiff illustrates some common problems
  252.     with building pixmaps and using different visual classes.  It is
  253.     distributed as part of Sam Leffler's libtiff package and it is also
  254.     available on export.lcs.mit.edu, ftp.uu.net and comp.sources.x.
  255.     xtiff 2.0 was announced in 4/91; it includes Xlib and Xt versions.
  256.  
  257.     ALV, a Sun-specific image toolkit.  Version 2.0.6 posted to
  258.     comp.sources.sun on 11dec89.  Also available via email to
  259.     alv-users-request@cs.bris.ac.uk.
  260.  
  261.     popi, an image manipulation language.  Version 2.1 posted to
  262.     comp.sources.misc on 12dec89.
  263.  
  264.     ImageMagick, an X11 package for display and interactive manipulation
  265.     of images.  Includes tools for image conversion, annotation, compositing,
  266.     animation, and creating montages.  ImageMagick can read and write many of
  267.     the more popular image formats.  Available via FTP as
  268.     export.lcs.mit.edu:contrib/ImageMagick.tar.Z.
  269.  
  270.     Khoros, a huge (~100 meg) graphical development environment based on
  271.     X11R4.  Khoros components include a visual programming language, code
  272.     generators for extending the visual language and adding new application
  273.     packages to the system, an interactive user interface editor, an
  274.     interactive image display package, an extensive library of image and
  275.     signal processing routines, and 2D/3D plotting packages.  Available via
  276.     FTP as pprg.eece.unm.edu:pub/khoros/*.
  277.  
  278.     LaboImage, a SunView-based image processing and analysis package.  It
  279.     includes more than 200 image manipulation, processing and measurement
  280.     routines, on-line help, plus tools such as an image editor, a color
  281.     table editor and several biomedical utilities.  Available via anonymous
  282.     FTP as ads.com:pub/VISION-LIST-ARCHIVE/SHAREWARE/LaboImage_3.1.tar.Z
  283.  
  284.     The San Diego Supercomputer Center Image Tools, software tools for
  285.     reading, writing, and manipulating raster images.  Binaries for some
  286.     machines available via anonymous FTP in sdsc.edu:sdscpub.
  287.  
  288.     The Independent JPEG Group has written a package for reading and
  289.     writing JPEG files.  FTP to ftp.uu.net:graphics/jpeg/jpegsrc.v?.tar.Z
  290.  
  291. Don't forget to set binary mode when you FTP tar files.  For you MILNET
  292. folks who still don't have name servers, the IP addresses are:
  293.  
  294.     ads.com            128.229.30.16
  295.     cs.utah.edu            128.110.4.21
  296.     coral.cs.jcu.edu.au        137.219.17.4
  297.     export.lcs.mit.edu        18.24.0.12
  298.     freebie.engin.umich.edu    141.212.103.21
  299.     ftp.ee.lbl.gov        128.3.112.20
  300.     ftp.uu.net            137.39.1.9 or 192.48.96.9
  301.     gis.mit.edu            18.80.1.118
  302.     gondwana.ecr.mu.oz.au    128.250.70.62
  303.     karazm.math.uh.edu        129.7.7.6
  304.     marsh.cs.curtin.edu.au    134.7.1.1
  305.     nic.funet.fir        128.214.6.100
  306.     ftp.cosy.sbg.ac.at        141.201.2.15
  307.     ftp.ncsa.uiuc.edu        141.142.20.50
  308.     nl.cs.cmu.edu        128.2.222.56
  309.     pprg.eece.unm.edu        129.24.24.10
  310.     princeton.edu        128.112.128.1
  311.     sdsc.edu            132.249.20.22
  312.     ucbvax.berkeley.edu        128.32.133.1
  313.     venera.isi.edu        128.9.0.32
  314.     weedeater.math.yale.edu    128.36.23.17
  315.     wuarchive.wustl.edu        128.252.135.4
  316.     zamenhof.cs.rice.edu    128.42.1.75
  317.  
  318. Please do *not* post or mail messages saying "I can't FTP, could someone
  319. mail this to me?"  There are a number of automated mail servers that will
  320. send you things like this in response to a message.  See item 13 below for
  321. details on some.
  322.  
  323. Also, the newsgroup alt.graphics.pixutils is specifically for discussion
  324. of software like this.  You may find useful information there.
  325.  
  326.  
  327. 8) Format documents for TIFF, IFF, BIFF, NFF, OFF, FITS, etc.
  328.  
  329. You almost certainly don't need these.  Read the above item 7 on free
  330. image manipulation software.  Get one or more of these packages and
  331. look through them.  Chances are excellent that the image converter you
  332. were going to write is already there.  But if you still want one of the
  333. format documents, many such files are available by anonymous ftp from
  334. zamenhof.cs.rice.edu in directory pub/graphics.formats.  It is also
  335. mirrored at ftp.cosy.sbg.ac.at in dir /pub/mirror/file-formats/graphic.
  336.  
  337. These files were collected off the net and are believed to be correct.
  338. This archive includes pixel formats, and two- and three-dimensional object
  339. formats.  The future of this archive is uncertain at the moment, as Mark
  340. Hall <foo@cs.rice.edu> will apparently no longer be maintaining it.
  341.  
  342. A second graphics file format archive is now being actively maintained
  343. by Quincey Koziol (koziol@ncsa.uiuc.edu).  The latest version exists at
  344. ftp.ncsa.uiuc.edu in /misc/file.formats/graphics.formats.  Apparently,
  345. neither of these is complete, you might want to check both.
  346.  
  347. FITS stands for Flexible Image Transport System, it's an image file
  348. format most often used in astronomy.  Refer to the sci.space FAQ for
  349. more information if needed.
  350.  
  351.  
  352. 9) Converting between vector formats.
  353.  
  354. A lot of people ask about converting from HPGL to PostScript, or MacDraw
  355. to CGM, or whatever.  It is important to understand that this is a very
  356. different problem from the image format conversions in item 7.  Converting
  357. one image format to another is a fairly easy problem, since once you
  358. get past all the file header junk, a pixel is a pixel -- the basic objects
  359. are the same for all image formats.  This is not so for vector formats.
  360. The basic objects -- circles, ellipses, drop-shadowed pattern-filled
  361. round-cornered rectangles, etc. -- vary from one format to another.
  362. Except in extremely restricted cases, it is simply not possible to do
  363. a one-to-one conversion between vector formats.
  364.  
  365. On the other hand, it is quite possible to do a close approximation,
  366. rendering an image from one format using the primitives from another.
  367. As far as I know, no one has put together a general toolkit of such
  368. converters, but two different HPGL to PostScript converters have been
  369. posted to comp.sources.misc.  Check the index on your nearest archive
  370. site.
  371.  
  372. A related frequent question is how to convert from some vector format
  373. to a bitmapped image - from PostScript to Sun raster format, or HPGL to
  374. X11 bitmap.  For example, some of the commercial PostScript clones for
  375. PC's allow you to render to a disk file as well as a printer.  Also,
  376. the PostScript interpreters in the NeXT box and in Sun's X11/NeWs can
  377. be used to render to a file if you're clever.  But in general, the
  378. answer is no.  However, if someone were to put together a vector to
  379. vector conversion toolkit, adding a vector to raster converter would be
  380. trivial.
  381.  
  382. GNU ghostscript (from the FSF - current version 2.5.2) includes
  383. drivers for both ppm and gif format files, thus it can be used as
  384. a PostScript to ppm  or a PostScript to GIF filter.  (It implements
  385. essentially all of PostScript level 1 and alot of Display PostScript
  386. and level 2).
  387.  
  388.  
  389. 10) How to get Pixar films.
  390.  
  391. The various John Lasseter / Pixar computer animated shorts are available
  392. on video tape.  You can order them from Direct Cinema Limited:
  393.  
  394.     Film                           Individual Price      Institutional Price
  395.     Luxo, Jr.                $14.95            $50.00
  396.     Red's Dream                $19.95            $75.00
  397.     Tin Toy                $24.95            $75.00
  398.     Knickknack                $24.95            $75.00
  399.     Luxo, Jr./Red's Dream/Tin Toy    $39.95            $100.00
  400.  
  401. All tapes are on 1/2" VHS NTSC.  Add $10/tape for PAL format.  Also
  402. available:
  403.  
  404.     Tin Toy T-shirt            $15.00
  405.     Knickknack 3D T-shirt        $15.00 (includes glasses)
  406.  
  407. For individual orders, add $5 S&H for the first tape or shirt, $2 for
  408. each additional tape or shirt.  For institutional orders, add $5 S&H
  409. for the first tape, $3 for each additional tape.  Foreign shipping, add
  410. $3/tape or shirt.  Call 800-525-0000 (213-396-4774 international,
  411. 213-396-3233 FAX) to charge to your credit card.  Call first to verify
  412. prices and availability.  Or, just write to:
  413.  
  414.     Direct Cinema Limited
  415.     1749 14th Street
  416.     Santa Monica, CA 90404-4342
  417.  
  418. Allan Braunsdorf has this to say:
  419.  
  420. At SIGGRAPH they were selling a tape with all four shorts
  421. for $25.  That was a sale price.  You can get it for slightly
  422. more than that normally.  ($35 maybe.)  I believe it's
  423. available from RenderMan Retail (at Pixar's address).
  424.  
  425.     Pixar
  426.     1001 West Cutting Blvd.
  427.     Richmond, CA. 94804
  428.     (510) 236-4000
  429.     (510) 236-0388 (FAX)
  430.  
  431. You can obtain a video directly from Pixar which contains "Luxo, Jr.", "Red's
  432. Dream", "Tin Toy" and "Knicknack" for $25.00, plus $2.50 for shipping. They
  433. will take your order over the phone or via FAX with a major credit card. I
  434. ordered mine just last week and received it several days later. Don't expect
  435. to be able to rent a copy from your local video store. According to the license
  436. agreement printed on the back cover of the case, it cannot be rented.
  437.  
  438.  
  439. 11) How do I draw a circle as a Bezier (or B-spline) curve?
  440.  
  441. The short answer is, "You can't."  Unless you use a rational spline you
  442. can only approximate a circle.  The approximation may look acceptable,
  443. but it is sensitive to scale.  Magnify the scale and the error of
  444. approximation magnifies.  Deviations from circularity that were not
  445. visible in the small can become glaring in the large.  If you want to
  446. do the job right, consult the article:
  447.  
  448.   "A Menagerie of Rational B-Spline Circles"
  449.   by Leslie Piegl and Wayne Tiller
  450.   in IEEE Computer Graphics and Applications, volume 9, number 9,
  451.   September, 1989, pages 48-56.
  452.  
  453. For rough, non-rational approximations, consult the book:
  454.  
  455.   Computational Geometry for Design and Manufacture
  456.   by I. D. Faux and M. J. Pratt,
  457.   Ellis Horwood Publishers, Halsted Press, John Wiley 1980.
  458.  
  459. For the best known non-rational approximations, consult the article:
  460.  
  461.   "Good Approximation of Circles by Curvature-continuous Bezier Curves"
  462.   by Tor Dokken, Morten Daehlen, Tom Lyche, and Knut Morken
  463.   in Computer Aided Geometric Design, volume 7, numbers 1-4 (combined),
  464.   June, 1990, pages 33-41 [Elsevier Science Publishers (North-Holland)]
  465.  
  466.  
  467. 12) How to order standards documents.
  468.  
  469. The American National Standards Institute sells ANSI standards, and also
  470. ISO (international) standards.  Their sales office is at 1-212-642-4900,
  471. mailing address is 1430 Broadway, NY NY 10018.  It helps if you have the
  472. complete name and number.
  473.  
  474. Some useful numbers to know:
  475.  
  476. CGM (Computer Graphics Metafile) is ISO 8632-4 (1987).  GKS (Graphical
  477. Kernel System) is ANSI X3.124-1985.  PHIGS (Programmer's Hierarchical
  478. Interactive Graphics System) is ANSI X3.144-1988.  IGES is ASME/ANSI
  479. Y14.26M-1987.  Language bindings are often separate but related numbers;
  480. for example, the GKS FORTRAN binding is X3.124.1-1985.
  481.  
  482. Standards-in-progress are made available at key milestones to solicit
  483. comments from the graphical public (this includes you!).  ANSI can let
  484. you know where to order them; most are available from Global Engineering
  485. at 1-800-854-7179.
  486.  
  487.  
  488. 13) How to FTP by email.
  489.  
  490. There are a number of sites that archive the Usenet sources newsgroups
  491. and make them available via an email query system.  You send a message
  492. to an automated server saying something like "send comp.sources.unix/fbm",
  493. and a few hours or days later you get the file in the mail.
  494.  
  495. In addition, there is at least one FTP-by-mail server.  Send mail to
  496. ftpmail@decwrl.dec.com saying "help" and it will tell you how to use
  497. it.  Note that this service has at times been turned off due to abuse.
  498.  
  499.  
  500. 14) How to tell whether a point is within a planar polygon.
  501.  
  502. Consider a ray originating at the point of interest and continuing to
  503. infinity.  If it crosses an odd number of polygon edges along the way,
  504. the point is within the polygon.  If the ray crosses an even number of
  505. edges, the point is either outside the polygon, or within an interior
  506. hole formed from intersecting polygon edges.  This idea is known in
  507. the trade as the Jordan curve theorem; see Eric Haines' article in
  508. Glassner's ray tracing book (above) for more information, including
  509. treatment of special cases.
  510.  
  511. Another method is to sum the absolute angles from the point to all
  512. the vertices on the polygon.  If the sum is 2 pi, the point is inside,
  513. if the sum is 0 the point is outside.  However, this method is about an
  514. order of magnitude slower than the previous method because evaluating the
  515. trigonometric functions is usually quite costly.
  516.  
  517. Code for both methods (plus barycentric triangle testing) can be found in
  518. the Ray Tracing News, Vol. 5, No. 3, available from princeton.edu:
  519. pub/Graphics/RTNews/RTNv5n3.Z.
  520.  
  521.  
  522. 15) How to tessellate a sphere.
  523.  
  524. One simple way is to do recursive subdivision into triangles.  The
  525. base of the recursion is an octahedron, and then each level divides
  526. each triangle into four smaller ones.  Jon Leech <leech@cs.unc.edu>
  527. has posted a nice routine called sphere.c that generates the coordinates.
  528. It's available for FTP on ftp.ee.lbl.gov and princeton.edu.
  529.  
  530. 16) Specific references on ray-tracing and global illumination.
  531.  
  532. Rick Speer maintains a cross-indexed ray-tracing bibliography:
  533.  
  534. Highlights of this edition-
  535.  
  536.     i) more than 500 citations spanning the period from 1968 through
  537.        November '91;
  538.     ii) papers from all Siggraph, Graphics Interface, Eurographics, CG
  539.         International and Ausgraph proceedings through December, '91;
  540.     iii) all citations keyworded for easy lookup;
  541.     iv) cross-indices by keyword and author;
  542.     v)  glossary of the 119 keywords used.
  543.  
  544. The bib is in the form of a PostScript file.  The printout is 41 pages long.
  545. Below is a list of ftp sites and the dirs that contain the file. It's named
  546. "speer.raytrace.bib.ps.Z" and is compressed at most sites-
  547.  
  548.              Site                             Dir
  549.     wuarchive.wustl.edu    graphics/graphics/bib/RT.BIB.Speer/
  550.     karazm.math.uh.edu    pub/Graphics/
  551.     gondwana.ecr.mu.oz.au    pub/papers/
  552.     nic.funet.fi        pub/sci/papers/graphics
  553.     coral.cs.jcu.edu.au     graphics/papers/
  554.  
  555. Eric Haines (erich@eye.com) maintains ray tracing and radiosity/global
  556. illumination bibliographies.  These are in "refer" format, and so can be
  557. searched electronically (a simple awk script to search for keywords is
  558. included with each).  The bibliographies are available at most of the
  559. sites listed above, and the most current versions are maintained at
  560. princeton.edu: pub/Graphics/Papers as "RayBib.*" and "RadBib.*".
  561.  
  562. Tom Wilson (wilson@cs.ucf.edu) has collected over 300 abstracts from ray
  563. tracing related research papers and books.  The information is essentially
  564. in plaintext, and Latex and troff formatting programs are included.  This
  565. collection is available at most of the sites above as "rtabs.*".
  566.  
  567. 17) SIGGRAPH information online
  568.  
  569. [from Steve Cunningham and Ralph Orlick]
  570.  
  571. ACM-SIGGRAPH announces its online information site at  siggraph.org
  572. (128.248.245.250).  This site now provides SIGGRAPH information via both
  573. anonymous ftp and an electronic mail archive server.
  574.  
  575. The anonymous ftp service is very standard, and the ftp directory includes
  576. both conference and publications subdirectories.
  577.  
  578. To retrieve information by electronic mail, send mail to
  579.      archive-server@siggraph.org
  580. and in the subject or the body of the message include the message  send
  581. followed by the topic and subtopic you wish.  A good place to start is with
  582. the command
  583.      send index
  584. which will give you an up-to-date list of available information.
  585.  
  586.  
  587. 18) SIGGRAPH Panels Proceedings available
  588.  
  589. [from Steve Cunningham and Bob Judd]
  590.  
  591. ACM SIGGRAPH announces the availability of the SIGGRAPH '91 Panels Proceedings
  592. at the  siggraph.org  site (128.248.245.250).  The proceedings are available
  593. in three formats:
  594.      text   (ASCII)
  595.      rtf    (rich text format, suitable for many word processors)
  596.      word   (MS Word for the Macintosh)
  597. They may be retrieved from siggraph.org in two ways:
  598.  
  599. (1) by anonymous ftp
  600.     change to one of the directories
  601.        publications/s91/panels_proceedings/[text|rtf|word]
  602.     The text and rtf files may be downloaded in ASCII mode, while the word
  603.     files are stored in MacBinary format and must be downloaded in binary
  604.     mode.
  605.  
  606.     Each directory contains a Table of Contents file (TOC) that describes the
  607.     contents of each panel file.
  608.  
  609. (2) by electronic mail
  610.     send mail to
  611.        archive-server@siggraph.org
  612.     You can retrieve either the  text  or  rtf  files.  We suggest that you
  613.     first retrieve the index files by putting one of the messages
  614.        send panel91-txt index
  615.        send panel91-rtf index
  616.     in the subject or body of the message.  You will get the necessary
  617.     information to retrieve the actual transcript files.
  618.  
  619.  
  620. 19) Graphics mailing lists
  621.  
  622. There are a variety of graphics-related mailing list out there, each
  623. covering either a single product or a single topic.  I have been an
  624. active participant in one of these for some time now, and find the
  625. focus and expertise which can be brought to bear on an isolated topic
  626. to be nothing short of amazing.
  627.  
  628. Please send me the appropriate information if you have any others you
  629. would like to see added.
  630.  
  631. Name:        Imagine mailing list
  632. Description:    Discussion forum for users of the Imagine 3D Rendering and
  633.         Animation package by Impulse, Inc.
  634. Platforms:    Amiga
  635. Subscription:    imagine-request@email.sp.paramax.com
  636. Posting:    imagine@email.sp.paramax.com
  637.  
  638. Name:        DCTV mailing list
  639. Description:    Discussion forum for users of the Digital Creations DCTV
  640.         box, software, and file formats
  641. Platforms:    Amiga
  642. Subscription:    DCTV-request@nova.cc.purdue.edu
  643. Posting:    DCTV@nova.cc.purdue.edu
  644.  
  645. Name:        Rayshade Users mailing list
  646. Description:    Discussion forum for users of the Rayshade raytracer
  647. Platforms:    Most UNIX boxes, Amiga, Mac, IBM
  648. Subscription:    rayshade-request@cs.princeton.edu
  649. Posting:    rayshade-users@cs.princeton.edu
  650.